| Conditions | 2 |
| Total Lines | 17 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /** |
||
| 45 | selectInsertableSearch() { |
||
| 46 | $('.select-insertable-search').selectize({ |
||
| 47 | create: true, |
||
| 48 | sortField: 'text' |
||
| 49 | }); |
||
| 50 | |||
| 51 | $('.select-with-tags').selectize({ |
||
| 52 | delimiter: ',', |
||
| 53 | persist: false, |
||
| 54 | create: function (input) { |
||
| 55 | return { |
||
| 56 | value: input, |
||
| 57 | text: input |
||
| 58 | } |
||
| 59 | } |
||
| 60 | }); |
||
| 61 | } |
||
| 62 | |||
| 66 | } |